home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmSplash
- BackColor = &H00000000&
- BorderStyle = 3 'Fixed Dialog
- ClientHeight = 2970
- ClientLeft = 255
- ClientTop = 1410
- ClientWidth = 6000
- ClipControls = 0 'False
- ControlBox = 0 'False
- Icon = "frmSplash.frx":0000
- KeyPreview = -1 'True
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- Picture = "frmSplash.frx":000C
- ScaleHeight = 188.571
- ScaleMode = 0 'User
- ScaleWidth = 392.157
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Begin VB.Timer Timer1
- Enabled = 0 'False
- Interval = 5000
- Left = 4080
- Top = 120
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00C0FFFF&
- Height = 315
- Left = 120
- TabIndex = 1
- Top = 3360
- Width = 4875
- End
- Begin VB.Label lblCopyright
- BackStyle = 0 'Transparent
- Caption = "Copyright 2000-2001 - Fytek, Inc."
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FFFFFF&
- Height = 255
- Left = 240
- TabIndex = 0
- Top = 2640
- Width = 2415
- End
- Attribute VB_Name = "frmSplash"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_Click()
- CloseForm
- End Sub
- Private Sub Form_KeyPress(KeyAscii As Integer)
- CloseForm
- End Sub
- Private Sub Form_Load()
- lblVersion = "Version " & App.Major & "." & App.Minor
- Timer1.Enabled = True
- End Sub
- Private Sub Timer1_Timer()
- CloseForm
- End Sub
- Public Sub CloseForm()
- Unload Me
- pdfmain.Show
- End Sub
-